home *** CD-ROM | disk | FTP | other *** search
/ Network PC / Network PC.iso / amiga utilities / communication / internet / amitcp3.0b / src.lha / src / appl / askhost / amiga.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-08  |  245 b   |  15 lines

  1. #ifndef _AMIGA_H_
  2. #define _AMIGA_H_
  3.  
  4. #include <bsdsocket.h>
  5. #include <proto/dos.h>
  6.  
  7. #define printf Printf
  8.  
  9. void herror(char * banner);
  10.  
  11. static void __inline
  12.   bcopy(char *a, char *b, int n) { for(; n; n--) *b++ = *a++; }
  13.  
  14. #endif /* _AMIGA_H_ */
  15.